home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / owlspl2.zip / SPLASHER.HPP < prev    next >
C/C++ Source or Header  |  1992-07-20  |  532b  |  24 lines

  1. #ifndef __SPLASHER_HPP
  2. #define __SPLASHER_HPP
  3.  
  4. #define APPNAME "Splasher"
  5.  
  6. #include <owl.h>
  7. #include <bwcc.h>
  8. #include <edit.h>
  9. #include <string.h>
  10. #include "splids.h"
  11.  
  12.  
  13. class TSplashApp : public TApplication
  14.       {
  15.    protected :
  16.    public:
  17.        TSplashApp( LPSTR aName, HINSTANCE hInstance, HINSTANCE hPrevInstance,
  18.                           LPSTR lpCmd, int nCmdShow ) :
  19.          TApplication( aName, hInstance, hPrevInstance, lpCmd, nCmdShow ){};
  20.       virtual void InitInstance();
  21.       virtual void InitMainWindow();
  22.    };
  23.  
  24. #endif